home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1998
/
MacHack 1998.toast
/
Sessions
/
Completions
/
Completions Source
/
Timing
/
Microsecs.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-06-17
|
280 b
|
24 lines
|
[
TEXT/CWIE
]
// Microsecs.h
#ifndef Microsecs_h
#define Microsecs_h
#ifndef Integers_h
#include "Integers.h"
#endif
class Microsecs
{
private:
int32 count;
public:
Microsecs( int32 theCount )
: count( theCount )
{}
int32 Count() const { return count; }
};
#endif